home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / Browser / Web-Fix / Web-Fix Installer.exe / Main / Registration.k < prev    next >
Encoding:
Text File  |  1999-09-08  |  1.2 KB  |  54 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000146,$00000100,$0000028F,$000001EF,$00000000,$FFFFFFED,$00000000,$00000000};
  6.         LayoutWindow is {$00000142,$0000002A,$0000028F,$000001EF,$00000055,$0000003A,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 470; Height is 364; 
  12.     
  13.     
  14.     Elements is [
  15.         oRegistration2
  16.     ];
  17. end;
  18.  
  19. object oRegistration2 is cRTFText
  20. with 
  21.     Flags is $00000054; 
  22.     Name is "Registration"; 
  23.     Cursor is oDontCursor; 
  24.     Y is 16; 
  25.     Width is 470; Height is 348; 
  26.     
  27.     URL is "L1/Registration.rtf"; 
  28.     Transparent is true; 
  29.     
  30.     Events is [
  31.         cHotTextEvent
  32.         with Flags is $00000004; Mode is MouseEnter; TextData is "trigger"; 
  33.             Commands is [
  34.                 cSetElementCursorCommand
  35.                 with Target is oTargetSelf; Cursor is oFingerCursor; end
  36.             ];
  37.         end,
  38.         cHotTextEvent
  39.         with Flags is $00000004; Mode is MouseLeave; TextData is "trigger"; 
  40.             Commands is [
  41.                 cSetElementCursorCommand
  42.                 with Target is oTargetSelf; Cursor is oDontCursor; end
  43.             ];
  44.         end,
  45.         cHotTextEvent
  46.         with Flags is $00000004; TextData is "trigger"; 
  47.             Commands is [
  48.                 cLaunchCommand
  49.                 with URL is "http://www.Web-Fix.com"; Mode is ExecuteBrowser; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.